home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / METAKIT.ZIP / EXAMPLES / DISCAT / DISCAT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-09  |  1.2 KB  |  51 lines

  1. //    discat.h  -  disk catalog sample code
  2. //
  3. //    This is a part of the MetaKit library.
  4. //    Copyright (c) 1996 Meta Four Software.
  5. //    All rights reserved.
  6. /////////////////////////////////////////////////////////////////////////////
  7.  
  8. #ifndef __AFXWIN_H__
  9.     #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11.  
  12. #include "resource.h"       // main symbols
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15.  
  16. class CMyApp : public CWinApp
  17. {
  18. public:
  19.     virtual BOOL InitInstance();
  20. };
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23.  
  24. class CMainDlgWindow : public CDialog
  25. {
  26. private:
  27.  
  28. public:
  29.     CMainDlgWindow();
  30.  
  31.     //{{AFX_DATA(CMainDlgWindow)
  32.     enum { IDD = IDD_MAIN_DIALOG };
  33.     CEdit    m_path;
  34.     CStatic    m_status;
  35.     //}}AFX_DATA
  36.  
  37.     //{{AFX_VIRTUAL(CMainDlgWindow)
  38.     virtual void DoDataExchange(CDataExchange* pDX);
  39.     //}}AFX_VIRTUAL
  40.  
  41. protected:
  42.     //{{AFX_MSG(CMainDlgWindow)
  43.     afx_msg void OnScanBtn();
  44.     virtual BOOL OnInitDialog();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. // $Id: discat.h,v 1.2 1996/12/04 14:50:12 jcw Exp $
  51.